home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / RCS / spriteString.h,v < prev    next >
Encoding:
Text File  |  1991-10-04  |  1.1 KB  |  53 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     91.10.03.22.55.15;  author kupfer;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @Random string manipulation routines.
  17. @
  18.  
  19.  
  20.  
  21. 1.1
  22. log
  23. @Initial revision
  24. @
  25. text
  26. @/*
  27.  * spriteString.h --
  28.  *
  29.  *    Declarations for Sprite string-handling routines.
  30.  *
  31.  * Copyright 1991 Regents of the University of California
  32.  * Permission to use, copy, modify, and distribute this
  33.  * software and its documentation for any purpose and without
  34.  * fee is hereby granted, provided that this copyright
  35.  * notice appears in all copies.  The University of California
  36.  * makes no representations about the suitability of this
  37.  * software for any purpose.  It is provided "as is" without
  38.  * express or implied warranty.
  39.  *
  40.  * $Header: /sprite/lib/forms/RCS/proto.h,v 1.7 91/02/09 13:24:52 ouster Exp $ SPRITE (Berkeley)
  41.  */
  42.  
  43. #ifndef _SPRITESTRING
  44. #define _SPRITESTRING
  45.  
  46. #include <cfuncproto.h>
  47.  
  48. extern char **String_SaveArray _ARGS_ ((char **origPtr));
  49. extern char **String_FreeArray _ARGS_ ((char **stringsPtr));
  50.  
  51. #endif /* _SPRITESTRING */
  52. @
  53.